home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / bin / getconfig < prev    next >
Text File  |  2006-04-12  |  2KB  |  44 lines

  1. #!/bin/sh
  2.  
  3. # $XdotOrg: xc/programs/Xserver/hw/xfree86/getconfig/getconfig.sh,v 1.2 2004/04/23 19:54:01 eich Exp $
  4.  
  5. #
  6. # Copyright 2003 by David H. Dawes.
  7. # Copyright 2003 by X-Oz Technologies.
  8. # All rights reserved.
  9. #
  10. # Permission is hereby granted, free of charge, to any person obtaining a
  11. # copy of this software and associated documentation files (the "Software"),
  12. # to deal in the Software without restriction, including without limitation
  13. # the rights to use, copy, modify, merge, publish, distribute, sublicense,
  14. # and/or sell copies of the Software, and to permit persons to whom the
  15. # Software is furnished to do so, subject to the following conditions:
  16. # The above copyright notice and this permission notice shall be included in
  17. # all copies or substantial portions of the Software.
  18. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
  21. # THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
  22. # OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  23. # ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  24. # OTHER DEALINGS IN THE SOFTWARE.
  25. # Except as contained in this notice, the name of the copyright holder(s)
  26. # and author(s) shall not be used in advertising or otherwise to promote
  27. # the sale, use or other dealings in this Software without prior written
  28. # authorization from the copyright holder(s) and author(s).
  29. # Author: David Dawes <dawes@XFree86.Org>.
  30. #
  31.  
  32. # A simple wrapper to execute the real getconfig program.  So long as perl
  33. # is in $PATH, we don't need to know where it is this way.
  34.  
  35. if echo $0 | grep / >/dev/null 2>&1; then
  36.     DIR=`dirname $0`/
  37. fi
  38.  
  39. exec perl ${DIR}getconfig.pl "$@"
  40.